home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / GIMP 2.6.8 / gimp-2.6.8-i686-setup.exe / {app} / share / gimp / 2.0 / scripts / news-text.scm < prev    next >
Text File  |  2009-12-15  |  3KB  |  95 lines

  1. ; Newsprint text
  2. ; Copyright (c) 1998 Austin Donnelly <austin@greenend.org.uk>
  3. ;
  4. ;
  5. ; Based on alien glow code from Adrian Likins
  6. ;
  7. ; This program is free software; you can redistribute it and/or modify
  8. ; it under the terms of the GNU General Public License as published by
  9. ; the Free Software Foundation; either version 2 of the License, or
  10. ; (at your option) any later version.
  11. ;
  12. ; This program is distributed in the hope that it will be useful,
  13. ; but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. ; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  15. ; GNU General Public License for more details.
  16. ;
  17. ; You should have received a copy of the GNU General Public License
  18. ; along with this program; if not, write to the Free Software
  19. ; Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  20.  
  21.  
  22. (define (script-fu-newsprint-text string font font-size cell-size
  23.                                   density blur-radius text-color bg-color)
  24.   (let* (
  25.         (text-ext (gimp-text-get-extents-fontname string font-size PIXELS font))
  26.         (width (+ (car text-ext) 20 blur-radius))
  27.         (height (+ (list-ref text-ext 1) 20 blur-radius))
  28.         (img (car (gimp-image-new width height RGB)))
  29.         (bg-layer (car (gimp-layer-new img width height RGB-IMAGE "Background" 100 NORMAL-MODE)))
  30.         (text-layer (car (gimp-layer-new img width height RGBA-IMAGE "Text layer" 100 NORMAL-MODE)))
  31.         (text-mask 0)
  32.         (grey (/ (* density 255) 100))
  33.         )
  34.  
  35.     (gimp-context-push)
  36.  
  37.     (gimp-image-undo-disable img)
  38.     (gimp-image-add-layer img bg-layer 1)
  39.     (gimp-image-add-layer img text-layer -1)
  40.  
  41.     (gimp-context-set-background bg-color)
  42.     (gimp-edit-clear bg-layer)
  43.     (gimp-edit-clear text-layer)
  44.  
  45.     (gimp-context-set-foreground text-color)
  46.     (gimp-floating-sel-anchor
  47.       (car (gimp-text-fontname img text-layer
  48.                                (/ (+ 20 blur-radius) 2) (/ (+ 20 blur-radius) 2)
  49.                                string 0 TRUE font-size PIXELS font)))
  50.  
  51.     (set! text-mask (car (gimp-layer-create-mask text-layer ADD-ALPHA-MASK)))
  52.     (gimp-layer-add-mask text-layer text-mask)
  53.  
  54.     (gimp-selection-layer-alpha text-layer)
  55.     (gimp-context-set-background (list grey grey grey))
  56.     (gimp-edit-fill text-mask BACKGROUND-FILL)
  57.     (gimp-selection-none img)
  58.     (if (> blur-radius 0)
  59.         (plug-in-gauss-iir RUN-NONINTERACTIVE img text-mask blur-radius 1 1)
  60.     )
  61.  
  62.     (plug-in-newsprint RUN-NONINTERACTIVE img text-mask cell-size
  63.                        0 0 45.0 3 45.0 0 45.0 0 45.0 0 3)
  64.  
  65.     (gimp-edit-fill text-layer FOREGROUND-FILL)
  66.     (gimp-layer-remove-mask text-layer MASK-APPLY)
  67.  
  68.     (gimp-image-undo-enable img)
  69.  
  70.     (gimp-display-new img)
  71.  
  72.     (gimp-context-pop)
  73.   )
  74. )
  75.  
  76. (script-fu-register "script-fu-newsprint-text"
  77.   _"Newsprint Te_xt..."
  78.   _"Create a logo in the style of newspaper printing"
  79.   "Austin Donnelly"
  80.   "Austin Donnelly"
  81.   "1998"
  82.   ""
  83.   SF-STRING     _"Text"               "Newsprint"
  84.   SF-FONT       _"Font"               "Sans"
  85.   SF-ADJUSTMENT _"Font size (pixels)" '(100 2 1000 1 10 0 1)
  86.   SF-ADJUSTMENT _"Cell size (pixels)" '(7 1 100 1 10 0 1)
  87.   SF-ADJUSTMENT _"Density (%)"        '(60 0 100 1 10 0 0)
  88.   SF-ADJUSTMENT _"Blur radius"        '(0 0 100 1 5 0 0)
  89.   SF-COLOR      _"Text color"         "black"
  90.   SF-COLOR      _"Background color"   "white"
  91. )
  92.  
  93. (script-fu-menu-register "script-fu-newsprint-text"
  94.                          "<Image>/File/Create/Logos")
  95.